home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / RCMD.H < prev    next >
C/C++ Source or Header  |  1989-05-20  |  405b  |  14 lines

  1. /* remote command server definitions */
  2.  
  3. #define RCMD_PORT    333        /* default port for RCMD */
  4.  
  5. #define RCMD_LINE    128        /* maximum line length for cmds */
  6. #define RCMD_OBUF    128        /* size of one output buffer */
  7.  
  8. struct rcmd {
  9.     struct tcb *conn;        /* TCP connection */
  10.     struct mbuf *input;        /* input data buffer */
  11.     struct password pass;        /* password data */
  12. };
  13. #define NULLRCMD    ((struct rcmd *) 0)
  14.